home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 2 / CU Amiga Magazine's Super CD-ROM 02 (1996)(EMAP Images)(GB)[!][issue 1996-04].iso / 17_bit_pd / 17bitgif / gif2png.lha / gif2png / gif2png_0_51c.readme next >
Text File  |  1995-07-01  |  3KB  |  88 lines

  1. Short: GIF 2 PNG converter (40% faster) (beta)
  2. Type: gfx/conv
  3. Author: alex@hal.rhein-main.de
  4. Ported-By: g.sanderson@ais.gu.edu.au
  5.  
  6. 3 versions included:
  7.  
  8.     gif2png.000        runs on any Amiga
  9.     gif2png.020        runs on 68020+    (A3000, A1200, A4000 etc)
  10.     gif2png.020.fpu        runs on 68020+ with FPU (optimized for 040)
  11.  
  12. usage: gif2png [ -dhi ] [file[.gif]] ...
  13.  
  14.     -d delete source GIF files after successful conversion
  15.     -i create interlaced PNG files
  16.     -h create histogram chunks for color files
  17.  
  18. example:
  19.  
  20. shell> gif2png ufoc.gif
  21.  
  22. ufoc.gif will be read (if there is enough memory) and converted to
  23. ufoc.png automatically.  There is no need to specify .png anywhere.
  24.  
  25. You can view .PNG files with the png.datatype (available from Aminet)
  26. and any viewer that supports datatypes (OS 3.x+)
  27.  
  28. Interlaced .PNG files are best suited for WWW pages.
  29.  
  30. This version was compiled with SAS/C 6.55 meaning it is about 40% faster
  31. and 60% smaller than the GCC compiled version.  It doesn't need that
  32. 120K ixemul.library shit either.
  33.  
  34. I tested the .000 and .020 versions and they seem to work fine.  I have
  35. no way of testing the .020.fpu version.
  36.  
  37. Please don't try running the .020 version on a 68000 machine or the FPU
  38. version on a machine without a FPU as the executables don't check for the
  39. type of processor/fpu they are running on.
  40.  
  41. You can obtain the latest original source code for gif2png (and many other
  42. PNG related sources) from:
  43.  
  44. ftp://ftp.uu.net/graphics/png/code/
  45. ftp://www.hensa.ac.uk/mirrors/uunet/grapics/png/code/
  46.  
  47. Specifically for gif2png, you need the following files:
  48.  
  49. gif2png-0.51.zip    GIF->PNG converter (C source code)
  50. lbpng071.zip        Png reference lib v0.71 (C source code - requires zlib)
  51. zlib093.zip        Zip de/compression lib v0.93 (C source code)
  52.  
  53. Additionally, zlib can be used freely in anything for compressing anything.
  54.  
  55.  
  56. Original copyright follows:
  57.  
  58.   gif2png:
  59.  
  60.   Copyright (C) 1995 Alexander Lehmann
  61.  
  62.   This software is provided 'as-is', without any express or implied
  63.   warranty.  In no event will the authors be held liable for any damages
  64.   arising from the use of this software.
  65.  
  66.   Permission is granted to anyone to use this software for any purpose,
  67.   including commercial applications (see below), and to alter it and
  68.   redistribute it freely, subject to the following restrictions:
  69.  
  70.   1. The origin of this software must not be misrepresented; you must not
  71.      claim that you wrote the original software. If you use this software
  72.      in a product, an acknowledgment in the product documentation would be
  73.      appreciated but is not required.
  74.   2. Altered source versions must be plainly marked as such, and must not be
  75.      misrepresented as being the original software.
  76.   3. This notice may not be removed or altered from any source distribution.
  77.   4. Binary only distributions of the software must include the file README
  78.      with the copyright statement. You are welcome to add a copyright
  79.      statement for your modifications and a contact address, though.
  80.  
  81.   Note that this program uses the LZW decompression algorithm, which due to
  82.   patent claims probably requires you to license if you use the algorithm
  83.   in a commercial program or distribute this program on a for-profit basis.
  84.   (See http://www.unisys.com)
  85.  
  86.  
  87.   Alexander Lehmann <alex@hal.rhein-main.de>
  88.